home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / doom / nowpatch.zip / NOWPATCH.TXT < prev    next >
Text File  |  1996-09-09  |  3KB  |  82 lines

  1. How to use QuakeC patch files without killing yourself
  2. by Matt Joiner <mortlgrn@sonic.net>
  3. September 9 1996
  4.  
  5. Ever try to figure out how to get patch files made from looking at that
  6. horrible howpatch.txt file?  Well I did, and IT SUCKS!  in this zip
  7. you will find everything you need to play quake with a QuakeC
  8. modification, all you need is a patch.
  9.  
  10. 1.    Unzip this zip with the directory option...
  11.     The directory v101qc has all the qc source strait from id itself,
  12.     unlike the crap you get from deacc, this code will work with 
  13.     patch files.
  14.     Inside v101qc there is also the dos compiled qcc compiler compiled
  15.     by id themselves.
  16.     In the main directory you will find patch.exe, the much needed
  17.     file for patching up the qc files with new code.
  18.  
  19. 2.    Download a patch file.  Once you get a QuakeC mod zip and unzip it, 
  20.     it should have the extension ".pat".  If not, then download a
  21.     different patch or figure out what to do with it from these 
  22.     instructions.
  23.  
  24. 3.    put your ".pat" file in the main directory next to the patch.exe
  25.     file.  At the DOS prompt, be in that directory and type:
  26.     patch < filename.pat
  27.     (replace "filename" with actual name of the patch file.)
  28.  
  29. 4.    If all goes well, and it should if the patch is written well,
  30.     then you will end up with a lot of changed qc files in your v101qc
  31.     directory.  If you get any in the main directory with the 
  32.     extension ".qc", move them into the v101qc directory.
  33.  
  34. 5.    At the DOS promppt, change into the v101qc directory and type:
  35.     qccdos
  36.     this will compile all the qc codes and make a "progs.dat" file.
  37.  
  38. 6.    Make a directory in Quake like "thismod" and move the new
  39.     "progs.dat" file into that directory.  Now run quake with the game
  40.     option like this:
  41.     quake -game thismod
  42.  
  43. Happy now?  Me too.
  44.  
  45. Now, if you decide to download another patch, then there are 2 ways of
  46. going about this:
  47.  
  48. 1.    You can type:
  49.     patch -R < filename.pat
  50.     at the DOS prompt.  You still end up with all those '~' backup
  51.     files hanging around, but it should do the job.
  52.  
  53. or 
  54. 2.    You can just backup the "v101qc" directory before doing patches
  55.     and then copy the backups to the v101qc directory before doing
  56.     each patch.
  57.  
  58. Now your v101qc directory is ready to patch again.
  59.  
  60. NOTES:  Redundancy is reaching its peak with cwsdpmi.exe.  You have one
  61. in your quake directory.  You have one in your PolyEd directory.  And 
  62. now you have one in your v101qc directory as well as one in your main
  63. patch directory!  Cwsdmpi is for DOS users; if you happen to be one of 
  64. them I recommend you put cwsdmpi in one place and then add that place to
  65. your path.  For instance, lets say you put cwsdpmi in c:\dmpi\
  66. you type "path" and it says:
  67. c:\;c:\windows
  68. then to add the new directory type
  69. path c:\;c:\windows;c:\dmpi
  70. now you don't have to have cwsdpmi hanging out everywhere.  But hey, its
  71. kind of cool djgpp trademark huh?
  72.  
  73.  
  74. If you need more info like how to make QuakeC files and what the patch.exe
  75. error messages mean then you will need to read the howpatch file after all.
  76. But this file is cool if you don't want to kill yourself just trying to 
  77. get a solidcorpse mod to work.
  78.  
  79. here is a cool quake page:
  80. http://www.sonic.net/~mortlgrn/quake.html
  81.  
  82.